home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Source.bin / LabelHTMLLink.java < prev    next >
Text File  |  1998-08-21  |  1KB  |  50 lines

  1. package symantec.itools.awt;
  2.  
  3. //     06/11/97    LAB    Updated to Java 1.1.
  4. //     07/09/97    LAB    Deprecated, since ButtonBase now contains this functionality.
  5.  
  6. /**
  7.  * @deprecated
  8.  * All classes that extend ButtonBase, now contain HTML URL link capabilities.
  9.  * Use LabelButton instead.
  10.  * <p>
  11.  * @version 1.1, July 9, 1997
  12.  * @author Symantec
  13.  */
  14. public class LabelHTMLLink extends LabelButton
  15. {
  16.     /**
  17.      * Constructs a LabelHTMLLink object.
  18.      */
  19.     public LabelHTMLLink() {
  20.     }
  21.  
  22.     /**
  23.      * @deprecated
  24.      * @see ButtonBase#setLinkURL
  25.      * @exception java.beans.PropertyVetoException
  26.      * if the specified property value is unacceptable
  27.      */
  28.     public void setURL(java.net.URL u) throws java.beans.PropertyVetoException
  29.     {
  30.         super.setLinkURL(u);
  31.         url = getLinkURL();
  32.     }
  33.  
  34.     /**
  35.      * @deprecated
  36.      * @see ButtonBase#getLinkURL
  37.      */
  38.     public java.net.URL getURL()
  39.     {
  40.         return super.getLinkURL();
  41.     }
  42.  
  43.     /**
  44.      * @deprecated
  45.      * @see ButtonBase#linkURL
  46.      */
  47.     protected java.net.URL url;
  48. }
  49.  
  50.